home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.352 < prev    next >
Encoding:
Text File  |  1996-02-12  |  27.9 KB  |  567 lines

  1. Frequently Asked Questions (FAQS);faqs.352
  2.  
  3.  
  4.  
  5.       - PROGV. PROGV binds dynamic variables and is often misused in
  6.         conjunction with EVAL, which uses the dynamic environment.
  7.         In general, avoid unnecessary use of special variables.
  8.         PROGV is mainly for writing interpreters for languages embedded
  9.         in Lisp. If you want to bind a list of values to a list of
  10.         lexical variables, use
  11.             (MULTIPLE-VALUE-BIND (..) (VALUES-LIST ..) ..)
  12.         or
  13.             (MULTIPLE-VALUE-SETQ (..) (VALUES-LIST ..))
  14.         instead. Most decent compilers can optimize this expression.
  15.         However, use of this idiom is not to be encouraged unless absolutely
  16.         necessary.
  17.  
  18.       - CATCH and THROW. Often a named BLOCK and RETURN-FROM are
  19.         more appropriate. Use UNWIND-PROTECT when necessary.
  20.  
  21.       - Destructive operations, such as NCONC, SORT, DELETE,
  22.         RPLACA, and RPLACD, should be used carefully and sparingly.
  23.         In general, trust the garbage collector: allocate new
  24.         data structures when you need them.
  25.  
  26.    To improve the readability of your code,
  27.  
  28.       - Don't use any C{A,D}R functions with more than two
  29.         letters between the C and the R. When nested, they become
  30.         hard to read. If you have complex data structures, you
  31.         are often better off describing them with a DEFSTRUCT,
  32.         even if the type is LIST. If you must use C{A,D}R, try to
  33.         use destructuring-bind instead, or at least SECOND, THIRD,
  34.         NTH, NTHCDR, etc.
  35.  
  36.       - Use COND instead of IF and PROGN. In general, don't use PROGN if
  37.         there is a way to write the code within an implicit
  38.         PROGN. For example,
  39.            (IF (FOO X)
  40.                (PROGN (PRINT "hi there") 23)
  41.                34)
  42.         should be written using COND instead.
  43.  
  44.       - Never use a 2-argument IF or a 3-argument IF with a second
  45.         argument of NIL unless you want to emphasize the return value;
  46.         use WHEN and UNLESS instead. You will want to emphasize the
  47.         return value when the IF clause is embedded within a SETQ,
  48.         such as (SETQ X (IF (EQ Y Z) 2 NIL)). If the second argument
  49.         to IF is the same as the first, use OR instead: (OR P Q) rather
  50.         than (IF P P Q). Use UNLESS instead of (WHEN (NOT ..) ..)
  51.         but not instead of (WHEN (NULL ..) ..).
  52.  
  53.       - Use COND instead of nested IF statements. Be sure to check for
  54.         unreachable cases, and eliminate those cond-clauses.
  55.  
  56.       - Use backquote, rather than explicit calls to LIST, CONS, and
  57.         APPEND, whenever writing a form which produces a Lisp form, but
  58.         not as a general substitute for LIST, CONS and APPEND. LIST,
  59.         CONS and APPEND usually allocate new storage, but lists produced
  60.         by backquote may involve destructive modification (e.g., ,.).
  61.  
  62.       - Make the names of special (global) variables begin and end
  63.         with an asterisk (*): (DEFVAR *GLOBAL-VARIABLE*)
  64.         Some programmers will mark the beginning and end of an internal
  65.         global variable with a percent (%) or a period (.).
  66.         Make the names of constants begin and end with a plus (+):
  67.         (DEFCONSTANT +E+ 2.7182818)
  68.         This helps distinguish them from lexical variables. Some people
  69.         prefer to use macros to define constants, since this avoids
  70.         the problem of accidentally trying to bind a symbol declared
  71.         with defconstant.
  72.  
  73.       - If your program is built upon an underlying substrate which is
  74.         implementation-dependent, consider naming those functions and
  75.         macros in a way that visually identifies them, either by placing
  76.         them in their own package, or prepending a character like a %, .,
  77.         or ! to the function name. Note that many programmers use the
  78.         $ as a macro character for slot access, so it should be avoided
  79.         unless you're using it for that purpose.
  80.  
  81.       - Don't use property lists. Instead, use an explicit hash table.
  82.         This helps avoid problems caused by the symbol being in the wrong
  83.         package, accidental reuse of property keys from other
  84.         programs, and allows you to customize the structure of the table.
  85.  
  86.       - Use the most specific construct that does the job. This lets
  87.         readers of the code see what you intended when writing the code.
  88.         For example, don't use SETF if SETQ will do (e.g., for lexical
  89.         variables). Use the most specific predicate to test your conditions.
  90.         If you intend for a function to be a predicate, have it return T
  91.         for true, not just non-NIL.
  92.  
  93.       - When NIL is used as an empty list, use () in your code. When NIL
  94.         is used as a boolean, use NIL. Similarly, use NULL to test for an
  95.         empty list, NOT to test a logical value. Use ENDP to test for the
  96.         end of a list, not NULL.
  97.  
  98.       - Don't use the &AUX lambda-list keyword. It is always clearer to
  99.         define local variables using LET or LET*.
  100.  
  101.       - When using RETURN and RETURN-FROM to exit from a block, don't
  102.         use (VALUES ..) when returning only one value, except if you
  103.         are using it to suppress extra multiple values from the first
  104.         argument.
  105.  
  106.       - If you want a function to return no values (i.e., equivalent to
  107.         VOID in C), use (VALUES) to return zero values. This signals
  108.         to the reader that the function is used mainly for side-effects.
  109.  
  110.       - (VALUES (VALUES 1 2 3)) returns only the first value, 1.
  111.         You can use (VALUES (some-multiple-value-function ..)) to suppress
  112.         the extra multiple values from the function. Use MULTIPLE-VALUE-PROG1
  113.         instead of PROG1 when the multiple values are significant.
  114.  
  115.       - When using MULTIPLE-VALUE-BIND and DESTRUCTURING-BIND, don't rely
  116.         on the fact that NIL is used when values are missing. This is
  117.         an error in some implementations of DESTRUCTURING-BIND. Instead,
  118.         make sure that your function always returns the proper number of
  119.         values.
  120.  
  121.     Documentation:
  122.  
  123.       - Comment your code. Use three semicolons in the left margin before
  124.         the definition for major explanations. Use two semicolons that
  125.         float with the code to explain the routine that follows. Two
  126.         semicolons may also be used to explain the following line when the
  127.         comment is too long for the single semicolon treatment. Use
  128.         a single semicolon to the right of the code to explain a particular
  129.         line with a short comment. The number of semicolons used roughly
  130.         corresponds with the length of the comment. Put at least one blank
  131.         line before and after top-level expressions.
  132.  
  133.       - Include documentation strings in your code. This lets users
  134.         get help while running your program without having to resort to
  135.         the source code or printed documentation.
  136.  
  137.    Issues related to macros:
  138.  
  139.       - Never use a macro instead of a function for efficiency reasons.
  140.         Declaim the function as inline -- for example,
  141.           (DECLAIM (INLINE ..))
  142.         This is *not* a magic bullet -- be forewarned that inline
  143.         expansions can often increase the code size dramatically. INLINE
  144.         should be used only for short functions where the tradeoff is
  145.         likely to be worthwhile: inner loops, types that the compiler
  146.         might do something smart with, and so on.
  147.  
  148.       - When defining a macro that provides an implicit PROGN, use the
  149.         &BODY lambda-list keyword instead of &REST.
  150.  
  151.       - Use gensyms for bindings within a macro, unless the macro lets
  152.         the user explicitly specify the variable. For example:
  153.             (defmacro foo ((iter-var list) body-form &body body)
  154.               (let ((result (gensym "RESULT")))
  155.                 `(let ((,result nil))
  156.                    (dolist (,iter-var ,list ,result)
  157.                      (setq ,result ,body-form)
  158.                      (when ,result
  159.                         ,@body)))))
  160.         This avoids errors caused by collisions during macro expansion
  161.         between variable names used in the macro definition and in the
  162.         supplied body.
  163.  
  164.       - Use a DO- prefix in the name of a macro that does some kind of
  165.         iteration, WITH- when the macro establishes bindings, and
  166.         DEFINE- or DEF- when the macro creates some definitions. Don't
  167.         use the prefix MAP- in macro names, only in function names.
  168.  
  169.       - Don't create a new iteration macro when an existing function
  170.         or macro will do.
  171.  
  172.       - Don't define a macro where a function definition will work just
  173.         as well -- remember, you can FUNCALL or MAPCAR a function but
  174.         not a macro.
  175.  
  176.       - The LOOP and SERIES macros generate efficient code. If you're
  177.         writing a new iteration macro, consider learning to use one
  178.         of them instead.
  179.  
  180.    File Modularization:
  181.  
  182.       - If your program involves macros that are used in more than one
  183.     file, it is generally a good idea to put such macros in a separate
  184.     file that gets loaded before the other files. The same things applies
  185.     to primitive functions. If a macro is complicated, the code that
  186.     defines the macro should be put into a file by itself. In general, if
  187.     a set of definitions form a cohesive and "independent" whole, they
  188.     should be put in a file by themselves, and maybe even in their own
  189.     package. It isn't unusual for a large Lisp program to have files named
  190.     "site-dependent-code", "primitives.lisp", and "macros.lisp". If a file
  191.     contains primarily macros, put "-macros" in the name of the file.
  192.  
  193.    Stylistic preferences:
  194.  
  195.       - Use (SETF (CAR ..) ..) and (SETF (CDR ..) ..) in preference to
  196.         RPLACA and RPLACD. Likewise (SETF (GET ..) ..) instead of PUT.
  197.  
  198.       - Use INCF, DECF, PUSH and POP instead instead of the corresponding
  199.         SETF forms.
  200.  
  201.       - Many programmers religiously avoid using CATCH, THROW, BLOCK,
  202.         PROG, GO and TAGBODY.  Tags and go-forms should only be necessary
  203.         to create extremely unusual and complicated iteration constructs. In
  204.         almost every circumstance, a ready-made iteration construct or
  205.         recursive implementation is more appropriate.
  206.  
  207.       - Don't use LET* where LET will do. Don't use LABELS where FLET
  208.         will do. Don't use DO* where DO will do.
  209.  
  210.       - Don't use DO where DOTIMES or DOLIST will do.
  211.  
  212.       - If you like using MAPCAR instead of DO/DOLIST, use MAPC when
  213.         no result is needed -- it's more efficient, since it doesn't
  214.         cons up a list. If a single cumulative value is required, use
  215.         REDUCE. If you are seeking a particular element, use FIND,
  216.         POSITION, or MEMBER.
  217.  
  218.       - If using REMOVE and DELETE to filter a sequence, don't use the
  219.         :test-not keyword or the REMOVE-IF-NOT or DELETE-IF-NOT functions.
  220.         Use COMPLEMENT to complement the predicate and the REMOVE-IF
  221.         or DELETE-IF functions instead.
  222.  
  223.       - Use complex numbers to represent points in a plane.
  224.  
  225.       - Don't use lists where vectors are more appropriate. Accessing the
  226.         nth element of a vector is faster than finding the nth element
  227.         of a list, since the latter requires pointer chasing while the
  228.         former requires simple addition. Vectors also take up less space
  229.         than lists. Use adjustable vectors with fill-pointers to
  230.         implement a stack, instead of a list -- using a list continually
  231.         conses and then throws away the conses.
  232.  
  233.       - When adding an entry to an association list, use ACONS, not
  234.         two calls to CONS. This makes it clear that you're using an alist.
  235.  
  236.       - If your association list has more than about 10 entries in it,
  237.         consider using a hash table. Hash tables are often more efficient.
  238.  
  239.       - When you don't need the full power of CLOS, consider using
  240.         structures instead. They are often faster, take up less space, and
  241.         easier to use.
  242.  
  243.       - Use PRINT-UNREADABLE-OBJECT when writing a print-function.
  244.  
  245.       - Use WITH-OPEN-FILE instead of OPEN and CLOSE.
  246.  
  247.       - When a HANDLER-CASE clause is executed, the stack has already
  248.         unwound, so dynamic bindings that existed when the error
  249.         occured may no longer exist when the handler is run. Use
  250.         HANDLER-BIND if you need this.
  251.  
  252.       - When using CASE and TYPECASE forms, if you intend for the form
  253.         to return NIL when all cases fail, include an explicit OTHERWISE
  254.         clause. If it would be an error to return NIL when all cases
  255.         fail, use ECASE, CCASE, ETYPECASE or CTYPECASE instead.
  256.  
  257.       - Use local variables in preference to global variables whenever
  258.         possible. Do not use global variables in lieu of parameter passing.
  259.         Global variables can be used in the following circumstances:
  260.           *  When one function needs to affect the operation of
  261.              another, but the second function isn't called by the first.
  262.              (For example, *load-pathname* and *break-on-warnings*.)
  263.           *  When a called function needs to affect the current or future
  264.              operation of the caller, but it doesn't make sense to accomplish
  265.              this by returning multiple values.
  266.           *  To provide hooks into the mechanisms of the program.
  267.              (For example, *evalhook*, *, /, and +.)
  268.           *  Parameters which, when their value is changed, represent a
  269.              major change to the program.
  270.              (For example, *print-level* and *print-readably*.)
  271.           *  For state that persists between invocations of the program.
  272.              Also, for state which is used by more than one major program.
  273.              (For example, *package*, *readtable*, *gensym-counter*.)
  274.           *  To provide convenient information to the user.
  275.              (For example, *version* and *features*.)
  276.           *  To provide customizable defaults.
  277.              (For example, *default-pathname-defaults*.)
  278.           *  When a value affects major portions of a program, and passing
  279.              this value around would be extremely awkward. (The example
  280.              here is output and input streams for a program. Even when
  281.              the program passes the stream around as an argument, if you
  282.              want to redirect all output from the program to a different
  283.              stream, it is much easier to just rebind the global variable.)
  284.  
  285.    Correctness and efficiency issues:
  286.  
  287.       - In CLtL2, IN-PACKAGE does not evaluate its argument. Use defpackage
  288.         to define a package and declare the external (exported)
  289.         symbols from the package.
  290.  
  291.       - The ARRAY-TOTAL-SIZE-LIMIT may be as small as 1024, and the
  292.         CALL-ARGUMENTS-LIMIT may be as small as 50.
  293.  
  294.       - Novices often mistakenly quote the conditions of a CASE form.
  295.         For example, (case x ('a 3) ..) is incorrect. It would return
  296.         3 if x were the symbol QUOTE. Use (case x (a 3) ..) instead.
  297.  
  298.       - Avoid using APPLY to flatten lists. (apply #'append list-of-lists)
  299.         is compiled into a function call, and can run into problems with
  300.         the CALL-ARGUMENTS-LIMIT. Use REDUCE or MAPCAR instead:
  301.            (reduce #'append list-of-lists :from-end t)
  302.            (mapcan #'copy-list list-of-lists)
  303.         The second will often be more efficient (see note below about choosing
  304.         the right algorithm). Beware of calls like (apply f (mapcar ..)).
  305.  
  306.       - NTH must cdr down the list to reach the elements you are
  307.         interested in. If you don't need the structural flexibility of
  308.         lists, try using vectors and the ELT function instead.
  309.  
  310.       - Don't use quoted constants where you might later destructively
  311.         modify them. For example, instead of writing '(c d) in
  312.            (defun foo ()
  313.              (let ((var '(c d)))
  314.                ..))
  315.         write (list 'c 'd) instead. Using a quote here can lead to
  316.         unexpected results later. If you later destructively modify the
  317.         value of var, this is self-modifying code! Some Lisp compilers
  318.         will complain about this, since they like to make constants
  319.         read-only. Modifying constants has undefined results in ANSI CL.
  320.         See also the answer to question [3-13].
  321.  
  322.         Similarly, beware of shared list structure arising from the use
  323.         of backquote. Any sublist in a backquoted expression that doesn't
  324.         contain any commas can share with the original source structure.
  325.  
  326.       - Don't proclaim unsafe optimizations, such as
  327.            (proclaim '(optimize (safety 0) (speed 3) (space 1)))
  328.         since this yields a global effect. Instead, add the
  329.         optimizations as local declarations to small pieces of
  330.         well-tested, performance-critical code:
  331.            (defun well-tested-function ()
  332.               (declare (optimize (safety 0) (speed 3) (space 1)))
  333.              ..)
  334.         Such optimizations can remove run-time type-checking; type-checking
  335.         is necessary unless you've very carefully checked your code
  336.         and added all the appropriate type declarations.
  337.  
  338.       - Some programmers feel that you shouldn't add declarations to
  339.         code until it is fully debugged, because incorrect
  340.         declarations can be an annoying source of errors. They recommend
  341.         using CHECK-TYPE liberally instead while you are developing the code.
  342.         On the other hand, if you add declarations to tell the
  343.         compiler what you think your code is doing, the compiler can
  344.         then tell you when your assumptions are incorrect.
  345.         Declarations also make it easier for another programmer to read
  346.         your code.
  347.  
  348.       - Don't change the compiler optimization with an OPTIMIZE
  349.         proclamation or declaration until the code is fully debugged
  350.         and profiled.  When first writing code you should say
  351.         (declare (optimize (safety 3))) regardless of the speed setting.
  352.  
  353.       - Depending on the optimization level of the compiler, type
  354.         declarations are interpreted either as (1) a guarantee from
  355.         you that the variable is always bound to values of that type,
  356.         or (2) a desire that the compiler check that the variable is
  357.         always bound to values of that type. Use CHECK-TYPE if (2) is
  358.         your intention.
  359.  
  360.       - If you get warnings about unused variables, add IGNORE
  361.         declarations if appropriate or fix the problem. Letting such
  362.         warnings stand is a sloppy coding practice.
  363.  
  364.    To produce efficient code,
  365.  
  366.       - choose the right algorithm. For example, consider seven possible
  367.         implementations of COPY-LIST:
  368.  
  369.            (defun copy-list (list)
  370.              (let ((result nil))
  371.                (dolist (item list result)
  372.                  (setf result (append result (list item))))))
  373.  
  374.            (defun copy-list (list)
  375.              (let ((result nil))
  376.                (dolist (item list (nreverse result))
  377.                  (push item result))))
  378.  
  379.            (defun copy-list (list)
  380.              (mapcar #'identity list))
  381.  
  382.            (defun copy-list (list)
  383.              (let ((result (make-list (length list))))
  384.                (do ((original list (cdr original))
  385.                     (new result (cdr new)))
  386.                    ((null original) result)
  387.                  (setf (car new) (car original)))))
  388.  
  389.            (defun copy-list (list)
  390.              (when list
  391.                (let* ((result (list (car list)))
  392.                       (tail-ptr result))
  393.                  (dolist (item (cdr list) result)
  394.                    (setf (cdr tail-ptr) (list item))
  395.                    (setf tail-ptr (cdr tail-ptr))))))
  396.  
  397.             (defun copy-list (list)
  398.               (loop for item in list collect item))
  399.  
  400.             (defun copy-list (list)
  401.               (if (consp list)
  402.                   (cons (car list)
  403.                         (copy-list (cdr list)))
  404.                   list))
  405.  
  406.         The first uses APPEND to tack the elements onto the end of the list.
  407.         Since APPEND must traverse the entire partial list at each step, this
  408.         yields a quadratic running time for the algorithm.  The second
  409.         implementation improves on this by iterating down the list twice; once
  410.         to build up the list in reverse order, and the second time to reverse
  411.         it. The efficiency of the third depends on the Lisp implementation,
  412.         but it is usually similar to the second, as is the fourth.  The fifth
  413.         algorithm, however, iterates down the list only once. It avoids the
  414.         extra work by keeping a pointer (reference) to the last cons of the
  415.         list and RPLACDing onto the end of that. Use of the fifth algorithm
  416.         may yield a speedup. Note that this contradicts the earlier dictum to
  417.         avoid destructive functions. To make more efficient code one might
  418.         selectively introduce destructive operations in critical sections of
  419.         code. Nevertheless, the fifth implementation may be less efficient in
  420.         Lisps with cdr-coding, since it is more expensive to RPLACD cdr-coded
  421.         lists. Depending on the implementation of nreverse, however,
  422.         the fifth and second implementations may be doing the same
  423.         amount of work. The sixth example uses the Loop macro, which usually
  424.         expands into code similar to the third. The seventh example copies
  425.         dotted lists, and runs in linear time. It's equivalent to the other
  426.         linear-time examples in a lisp that is properly tail-recursive.
  427.  
  428.       - use type declarations liberally in time-critical code, but
  429.         only if you are a seasoned Lisp programmer. Appropriate type
  430.         declarations help the compiler generate more specific and
  431.         optimized code. It also lets the reader know what assumptions
  432.         were made. For example, if you only use fixnum arithmetic,
  433.         adding declarations can lead to a significant speedup. If you
  434.         are a novice Lisp programmer, you should use type declarations
  435.         sparingly, as there may be no checking to see if the
  436.         declarations are correct. Wrong declarations can lead to errors
  437.         in otherwise correct code, and can limit the reuse of code
  438.         in other contexts. Depending on the Lisp compiler, it may also
  439.         be necessary to declare the type of results using THE, since
  440.         some compilers don't deduce the result type from the inputs.
  441.  
  442.       - check the code produced by the compiler by using the
  443.         disassemble function
  444.  
  445. ----------------------------------------------------------------
  446. [1-3] Where can I learn about implementing Lisp interpreters and compilers?
  447.  
  448. Books about Lisp implementation include:
  449.  
  450.    1. John Allen
  451.       "Anatomy of Lisp"
  452.       McGraw-Hill, 1978. 446 pages. ISBN 0-07-001115-X
  453.  
  454.    2. Samuel Kamin
  455.       "Programming Languages, An Interpreter-Based Approach"
  456.       Addison-Wesley. ISBN 0-201-06824-9
  457.            Includes sources to several interpreters for Lisp-like
  458.            languages, and a pointer to sources via anonymous ftp.
  459.  
  460.    3. Sharam Hekmatpour
  461.       "Lisp: A Portable Implementation"
  462.       Prentice Hall, 1985. ISBN 0-13-537490-X.
  463.            Describes a portable implementation of a small dynamic
  464.            Lisp interpreter (including C source code).
  465.  
  466.    4. Peter Henderson
  467.       "Functional Programming: Application and Implementation"
  468.       Prentice-Hall (Englewood Cliffs, NJ), 1980. 355 pages.
  469.  
  470.    5. Peter M. Kogge
  471.       "The Architecture of Symbolic Computers"
  472.       McGraw-Hill, 1991. ISBN 0-07-035596-7.
  473.            Includes sections on memory management, the SECD and
  474.            Warren Abstract Machines, and overviews of the various
  475.            Lisp Machine architectures.
  476.  
  477.    6. Daniel P. Friedman, Mitchell Wand, and Christopher T. Haynes
  478.       "Essentials of Programming Languages"
  479.       MIT Press, 1992, 536 pages. ISBN 0-262-06145-7.
  480.            Teaches fundamental concepts of programming language
  481.            design by using small interpreters as examples. Covers
  482.            most of the features of Scheme. Includes a discussion
  483.            of parameter passing techniques, object oriented languages,
  484.            and techniques for transforming interpreters to allow
  485.            their implementation in terms of any low-level language.
  486.            Also discusses scanners, parsers, and the derivation of
  487.            a compiler and virtual machine from an interpreter.
  488.            Source files available by anonymous ftp from cs.indiana.edu
  489.            in the directory /pub/eopl (129.79.254.191).
  490.  
  491.    7. Also see the proceedings of the biannual ACM Lisp and
  492.       Functional Programming conferences, and the implementation
  493.       notes for CMU Common Lisp.
  494. ----------------------------------------------------------------
  495. [1-4]  What does CLOS, PCL, X3J13, CAR, CDR, ... mean?
  496.  
  497. Glossary of acronyms:
  498.    CAR             Originally meant "Contents of Address portion of Register",
  499.                    which is what CAR actually did on the IBM 704.
  500.    CDR             Originally meant "Contents of Decrement portion of
  501.                    Register", which is what CDR actually did
  502.                    on the IBM 704. Pronounced "Cudder".
  503.    LISP            Originally from "LISt Processing"
  504.    GUI             Graphical User Interface
  505.    CLOS            Common Lisp Object System. The object oriented
  506.                    programming standard for Common Lisp. Based on
  507.                    Symbolics FLAVORS and Xerox LOOPS, among others.
  508.                    Pronounced either as "See-Loss" or "Closs". See also PCL.
  509.    PCL             Portable Common Loops. A portable CLOS implementation.
  510.                    Available by anonymous ftp from parcftp.xerox.com:pcl/.
  511.    LOOPS           Lisp Object Oriented Programming System. A predecessor
  512.                    to CLOS on Xerox Lisp machines.
  513.    X3J13           Subcommittee of the ANSI committee X3 which is
  514.                    working on the ANSI Standardization of Common Lisp.
  515.    ANSI            American National Standards Institute
  516.    CL              Common Lisp
  517.    SC22/WG16       The full name is ISO/IEC JTC 1/SC 22/WG 16. It stands
  518.                    for International Organization for
  519.                    Standardization/International Electronics(?)
  520.                    Congress(?) Joint Technical Committee 1, Subcommittee 22,
  521.                    Working Group 16.  This long-winded name is the ISO
  522.                    working group working on an international Lisp standard,
  523.                    (i.e., the ISO analogue to X3J13).
  524.    CLtL1           First edition of Guy Steele's book,
  525.                    "Common Lisp the Language".
  526.    CLtL2           Second edition of Guy Steele's book,
  527.                    "Common Lisp the Language".
  528.  
  529.    SICP            Abelson and Sussman's book "Structure and
  530.                    Interpretation of Computer Programs".
  531.    SCOOPS          An experimental object-oriented programming
  532.                    language for Scheme.
  533.    R3RS            Revised^3 Report on the Algorithmic Language Scheme.
  534.    R4RS            Revised^4 Report on the Algorithmic Language Scheme.
  535. ----------------------------------------------------------------
  536. [1-5]   Where can I get a copy of the draft ANSI standard for Common Lisp?
  537.  
  538. The draft proposed American National Standard for Common Lisp is under
  539. public review until November 23, 1992.
  540.  
  541. Hard copies of the draft may be purchased from Global Engineering
  542. Documents, Inc., 2805 McGaw Avenue, Irvine, CA  92714, 1-800-854-7179,
  543. 714-261-1455 for a single copy price of $80 ($104 international).
  544. Copies of the TeX sources and Unix-compressed DVI files may be
  545. obtained by anonymous FTP from parcftp.xerox.com in the directory
  546. /pub/cl/document/*. The file Reviewer-Notes.text should be read before
  547. ftp'ing the other files.
  548.  
  549. There is no mechanism for submitting Public Review comments by e-mail.
  550. Comments on the draft must be submitted in hard copy format BOTH to X3
  551. Secretariat, Attn: Lynn Barra, 1250 Eye Street NW, Suite 200,
  552. Washington, DC 20005-3922 AND to American National Standards Institute,
  553. Attn: BSR Center, 11 West 42nd St. 13th Floor, New York, NY 10036.
  554.  
  555. ----------------------------------------------------------------
  556. [1-6]   Lisp Job Postings
  557.  
  558. The LISP-JOBS mailing list exists to help programmers find Lisp
  559. programming positions, and to help companies with Lisp programming
  560. positions find capable Lisp programmers. (Lisp here means Lisp-like
  561. languages, including Scheme.)
  562.  
  563. Material appropriate for the list includes Lisp job announcements and
  564. resumes from Lisp programmers (which should be sent only once) should
  565. be sent to lisp-jobs@amc.com.  Administrative requests (e.g., to be
  566. added to the list) should be sent to lisp-jobs-request@amc.com.
  567.